home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PDefineColor.h ------------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 4:19 PM by Paul Ferguson.
- *
- * Description:
- *-------------------------------------------------------------------------
- */
- #ifndef __PDefineColor__
- #define __PDefineColor__
-
- #include "PMTypes.h"
- #include "PKeywords.h"
-
- class PRequestBuf;
-
- class PDefineColor
- {
-
- public:
-
- PDefineColor
- ( const char * sColorName,
- eColorType cType,
- eColor cModel,
- PMBool bOverprint,
- short d1,
- short d2,
- short d3,
- short d4 = 0);
-
- PDefineColor
- ( const char * sColorName,
- // assumes cType == kColorTypeTint
- eColor cModel,
- PMBool bOverprint,
- short d1,
- short d2,
- short d3,
- short d4,
- const char * sBaseColor,
- short dInkLevel);
-
- PDefineColor(PRequestBuf& request);
-
- private:
-
- PDefineColor();
- };
-
- #endif
-
- // end of PDefineColor.h
-